home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941031-19941221 / 000108_news@columbia.edu_Thu Nov 10 16:44:24 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25744
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 10 Nov 1994 14:36:51 -0500
  3. Received: by apakabar.cc.columbia.edu id AA03174
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 10 Nov 1994 14:36:50 -0500
  5. Path: news.columbia.edu!panix!zip.eecs.umich.edu!newsxfer.itd.umich.edu!gatech!howland.reston.ans.net!vixen.cso.uiuc.edu!mrcnext.cso.uiuc.edu!zinzow
  6. From: zinzow@mrcnext.cso.uiuc.edu (Mark S. Zinzow)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: if busy hangup and try again ...
  9. Date: 10 Nov 1994 16:44:24 GMT
  10. Organization: University of Illinois at Urbana
  11. Lines: 30
  12. Message-Id: <39til8$b02@vixen.cso.uiuc.edu>
  13. References: <39s5bl$dqe@vixen.cso.uiuc.edu>
  14. Nntp-Posting-Host: mrcnext.cso.uiuc.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. jwarner@prairienet.org (Jack E. Warner) writes:
  18. >My .kermrc file looks something like this (from memory):
  19.  
  20. >    set line /dev/ph1
  21. >    set speed 9600
  22. >    set <something else>
  23. >    log session
  24. >    dial 0000000
  25. >    connect
  26.  
  27. >How do I tell C-Kermit for UNIX "if you get a busy signal, hangup and redial
  28. >until you get success, then connect"? I have no documentation for this
  29. >program and would like to customize it just a bit and get tired of typing
  30. >red, ^c, red ^c, red, ^c, red, ^c, red, ... connect.
  31.  
  32. >Please send response to jwarner@prairienet.org
  33. >Thanks, 
  34. >Jack.
  35.  
  36. RTFM.  Kermit has a powerful script language.  Look at the CCSO Kermit doc
  37. in gopher for a full page of references, or ftp to watsun.cc.columbia.edu.
  38. Many sample scripts are disctributed with MS-DOS kermit that will do what you
  39. want.  A trivial one would be:
  40. :dial-loop
  41. out ATDT xxx-xxxx\13
  42. in 45 BUSY
  43. if suc goto dial-loop
  44. echo Not Busy, so I assume we're connected!
  45.  
  46. You can define this as a macro, or a take-file.